home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 117 / PC Guia 117.iso / Software / Produtividade / Software2 / Product4 / Setup.exe / drupal-4.6.0 / xmlrpc.php < prev   
Encoding:
PHP Script  |  2004-08-21  |  384 b   |  19 lines

  1. <?php
  2. // $Id: xmlrpc.php,v 1.9 2004/08/21 06:42:34 dries Exp $
  3.  
  4. /**
  5.  * @file
  6.  * PHP page for handling incoming XML-RPC requests from clients.
  7.  */
  8.  
  9. include_once 'includes/bootstrap.inc';
  10. include_once 'includes/common.inc';
  11. include_once 'includes/xmlrpc.inc';
  12. include_once 'includes/xmlrpcs.inc';
  13.  
  14. $functions = module_invoke_all('xmlrpc');
  15.  
  16. $server = new xmlrpc_server($functions);
  17.  
  18. ?>
  19.